home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / utility3 / makemdi2.zip / CLIENT.C < prev    next >
C/C++ Source or Header  |  1992-11-25  |  1KB  |  47 lines

  1. #define _CLIENT_C
  2. //----------------------------------------------------------------- 
  3. // CLIENT.C - MDI Client window management. 
  4. // 
  5. // MAKEMDI adaptation of Windows 3.1 SDK MAKEAPP system. 
  6. // 
  7. // MDI application design based on Chapter 7 of     
  8. // "Windows 3: A Developer's Guide" by Jeffrey Richter. 
  9. // 
  10. // Adaptation developed with permission of the author by  
  11. // John F. Holliday, Technisoft Corporation 
  12. // Telephone: (515) 472-9803, CompuServe: 71271,634 
  13. //
  14. // [DMM]    25-Nov-1992: Fixed crashing on exit
  15. //            Also tabified file to tabsize of 4
  16. //
  17. //            David M. Miller, Business Visions, Inc.
  18. //            Telephone: (212) 747-6118
  19. //            CompuServe: 72676,327
  20. //            internet: dmiller@hera.sbi.com
  21. // 
  22. // NOTES:    The MDI client manages any number of MDI child windows. 
  23. // These routines are written to manage all available child 
  24. // window classes and created instances. 
  25. //----------------------------------------------------------------- 
  26. #include "makemdi.h"
  27.  
  28.  
  29.  
  30. BOOL Client_Initialize(APP * papp)
  31. //----------------------------------------------------------------- 
  32. // Initialize all MDI child window classes. 
  33. //----------------------------------------------------------------- 
  34. {
  35.     if (!Sheet_Initialize(papp))
  36.         return 0;
  37.     if (!Chart_Initialize(papp))
  38.         return 0;
  39.     return TRUE;
  40. }
  41.  
  42.  
  43.  
  44. void Client_Terminate(APP * papp)
  45. {
  46. }
  47.